home *** CD-ROM | disk | FTP | other *** search
/ World of Education / World of Education.iso / world_s / sp12src.zip / EDITDIST.PAS < prev    next >
Pascal/Delphi Source File  |  1988-11-02  |  176b  |  13 lines

  1. Unit EditDist;
  2. Interface
  3.  
  4. Function EditDistance(x, y : String) : Word;
  5.  
  6. Implementation
  7.  
  8. {$L EDITDIST}
  9.  
  10. Function EditDistance(x, y : String) : Word;
  11. External;
  12.  
  13. End.